home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / wnos5src.zip / TTY.H < prev    next >
C/C++ Source or Header  |  1993-08-09  |  298b  |  14 lines

  1. #ifndef    TTYH
  2. #define    TTYH
  3. /* In ttydriv.c: */
  4. struct mbuf *ttydriv __ARGS((struct session *sp,char c));
  5.  
  6. struct ttystate {
  7.     struct mbuf *line;    /* Line buffer */
  8.     int echo;        /* Keyboard local echoing? */
  9.     int edit;        /* Local editing? */
  10.     int crnl;        /* Translate cr to lf? */
  11. };
  12. #endif
  13.  
  14.